home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP NET Rehberi Eylül 1998.iso / ftp / iftp21 / IFTPHIST.TXT < prev    next >
Text File  |  1998-06-29  |  3KB  |  82 lines

  1. iFTP HISTORY FILE
  2. -----------------
  3.  
  4. 2.1    - Official release
  5.  
  6. 2.1a   - Added RENAME Script command.
  7.  
  8.          RENAME <oldfilename> <newfilename>
  9.  
  10.          Remame old file name to new file name.
  11.  
  12.          Usage Notes:
  13.  
  14.          Both files must be on the same machine.
  15.  
  16.          When using DOS files, the new file name can be on a different
  17.          directory or dos drive.  So effectively, you can use this as a
  18.          move operation with the ability to rename the file at the same
  19.          time. For example:
  20.  
  21.                 rename c:\file1.txt d:\backup\file3.txt
  22.  
  23.          When working with remote files on a FTP server, there might be
  24.          some FTP servers who may or not honor the concept of moving a
  25.          file when using the rename command.  Be aware that some FTP
  26.          servers, may not allow operation. For example:
  27.  
  28.                  rename /file1.txt /textfiles/file20.txt
  29.  
  30.          The above command may work for some servers, not all.
  31.  
  32.        - The MOVE command:
  33.  
  34.                 MOVE <RemoteSourcefile> <RemoteTargetPath>
  35.  
  36.          Is now an acceptable command format when the source file(s) and
  37.          target path are are on the same remote machine.  You can use
  38.          this command to move a set of files from one directory to
  39.          another.  For example:
  40.  
  41.                       move /*.zip  /zipfiles
  42.  
  43.          The above command will move the remote *.zip in the root
  44.          directory to the /zipfile directory.  The directory must
  45.          already exist.
  46.  
  47. 2.1b   - iFTP now dynamically checks for RAS.  This means that RAS does
  48.          not have to be installed on the machine in order to use iFTP.
  49.          This is meant for using iFTP to connect to FTP servers on the
  50.          LAN or WAN.
  51.  
  52. 2.1c   - Fixes problem w/ dynamic loading of RAS in 2.1b.
  53.  
  54. 06/29/98 07:16 am
  55.  
  56. 2.1d   - New PROXY section in INI file.  This will allow for greater
  57.          control over proxy setups.  See the INI file for details.
  58.  
  59.        - The SaveDate Option and the script command Update will assume
  60.          the remote file date is a "local File Date" and not System or
  61.          GMT date.  If you know the remote file server displays GMT
  62.          dates, then use the new option UseGMTDate to retain the
  63.          original iFTP date behavior.  What this means is that the
  64.          remote file date will be used as the local storage file date
  65.          when downloading the file.  Previous iFTP would apply your
  66.          international GMT bias offset to the date.
  67.  
  68.        - New global environment strings:
  69.  
  70.             %date%      current date in MM/DD/YYYY format, i.e, 06/28/1998
  71.             %time%      current time in HH:MM:SS format, i.e, 18:24:00
  72.             %day%       current day (abbreviation), i.e, Mon, Wed, Sat..
  73.  
  74.        - New IF TIMERANGE command.
  75.  
  76.          Example, this will test that the current time is within the
  77.          begin and end time (in HH:MM:SS format):
  78.  
  79.             if timerange <begintime> <endtime> .....
  80.  
  81.  
  82.